home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 24
/
Amiga Format AFCD24 (Feb 1998, Issue 108).iso
/
-in_the_mag-
/
emulation
/
amiga
/
uae-0.7.0b2
/
src
/
include
/
uae.h
< prev
next >
Wrap
C/C++ Source or Header
|
1998-01-20
|
1KB
|
43 lines
/*
* UAE - The Un*x Amiga Emulator
*
* Prototypes for main.c
*
* Copyright 1996 Bernd Schmidt
*/
extern void do_start_program(void);
extern void do_leave_program(void);
extern void start_program(void);
extern void leave_program(void);
extern void real_main(int, char **);
extern void usage(void);
extern void parse_cmdline(int argc, char **argv);
/* Contains the filename of .uaerc */
extern char optionsfile[];
extern void save_options(FILE *);
extern void uae_reset(void);
extern void uae_quit(void);
extern int quit_program;
extern char warning_buffer[256];
/* This structure is used to define menus. The val field can hold key
* shortcuts, or one of these special codes:
* -4: deleted entry, not displayed, not selectable, but does count in
* select value
* -3: end of table
* -2: line that is displayed, but not selectable
* -1: line that is selectable, but has no keyboard shortcut
* 0: Menu title
*/
struct bstring {
const char *data;
int val;
};
extern char *colormodes[];